home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Games / PC-SIG World of Games (CDRM1080710) (1993).iso / 1938 / GETMOUSE.DOC < prev    next >
Text File  |  1992-09-24  |  2KB  |  47 lines

  1.           GETMOUSE:  mouse input for Batch files
  2.  
  3.    SPETER SOFTWARE, Version 1.1, (c) Copyright March 1990
  4.  
  5.  
  6.    This program allows mouse or keyboard input for batch files, using
  7.    the up & down cursor keys or a MS compatible mouse (if available).
  8.  
  9.    The program was written in Borland's Turbo Pascal 5.5
  10.  
  11.  
  12.    SYNTAX:
  13.        GETMOUSE <x1> <y1> <x2> <y2> <valid-characters> <x> <y>
  14.        where:       (x1,y1) - (x2,y2)     define the limits of mouse movement
  15.                     "valid-characters"    allows for "hit-keys"
  16.                     (x,y)                 initial mouse cursor position
  17.  
  18.  
  19.    RETURNS:
  20.      errorlevel = 100 + line-num (1-25) - when a mouse button is pressed
  21.    or
  22.      if one of the "valid-characters" is entered then
  23.      the errorlevel is set equal to 200+position-of-character-in-list.
  24.  
  25.  
  26.    EXAMPLES:
  27.       command line:    getmouse 1 10 25 15 mtydka 5 12
  28.  
  29.     ERRORLEVEL    ACTION
  30.        204        letter "d" typed
  31.        112        a mouse button pressed, with the mouse cursor on line 12
  32.        114        <Enter> key pressed, with the text cursor on line 14
  33.  
  34.  
  35. SOURCE LISTING
  36.   For a commented source listing of the program, send $50 to the address below.
  37.  
  38. ==============================================================================
  39.    Please address any comments to
  40.  
  41.         SPETER software
  42.         PO Box 643
  43.         Lane Cove
  44.         NSW  2066
  45.         Australia
  46. ==============================================================================
  47.